home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / hf / dsp / source / lpc.mem < prev    next >
Encoding:
Text File  |  1992-05-31  |  852 b   |  25 lines

  1. ;***************************************************************
  2. ;* LPC.MEM -- Memory allocation controls for LPC Codec           *
  3. ;*                                   *
  4. ;* Copyright (C) 1991, 1992 by Alef Null. All rights reserved. *
  5. ;* Author(s): Jarkko Vuori, OH2LNS                   *
  6. ;* Modification(s):                           *
  7. ;***************************************************************
  8.  
  9. ; P memory usage
  10. ;   0000 -    program code
  11.  
  12. ; X, Y memory usage
  13. ;   0000 - 01FF misc data (pointers, counters, etc.)
  14. ;   0200 - 03FF input/output sample buffers
  15.  
  16. ; x: and y: must begin after l: which is max. 10 words long
  17. ; p: must begin after interrupt vectors
  18. base        x:10,y:10,l:$0,p:$40
  19.  
  20. ; Samples section contains all modulo addressed parts of the LPC Codec
  21. section     Samples     x:$200,y:$200
  22.  
  23. ; SCIbuf section contains modulo addressed SCI buffers
  24. section     SCIbuf        p:$600
  25.